Loupe - Log - Monitor - Resolve
Gibraltar.Agent Namespace / Log Class / SendSessions Method / SendSessions(Predicate<SessionSummary>) Method
A delegate to evaluate sessions and determine which ones to send.

In This Topic
    SendSessions(Predicate<SessionSummary>) Method
    In This Topic
    Safely send sessions to the Loupe Server or via email. Only one send request will be processed at a time.
    Syntax
    'Declaration
     
    
    <AsyncStateMachineAttribute(Gibraltar.Agent.Log/d__126)> 
    Public Overloads Shared Function SendSessions( _ 
       ByVal sessionMatchPredicate As Predicate(Of SessionSummary) _ 
    ) As Task(Of Boolean)
    [AsyncStateMachine(Gibraltar.Agent.Log/d__126)] 
    public static Task<bool> SendSessions( 
       Predicate<SessionSummary> sessionMatchPredicate 
    )

    Parameters

    sessionMatchPredicate
    A delegate to evaluate sessions and determine which ones to send.

    Return Value

    True if the send was processed, false if it was not due to configuration or another active send
    Remarks

    This method uses the same logic to determine how to transport data as SendSessionsOnExit. If a Loupe Server connection is configured and the server can be contacted it will be used. Otherwise if packaging via email is configured the package will be sent that way.

    If there is no way to send the information (either due to configuration or the server being unreachable) this method will return false. Otherwise the method will return when it completes sending.

    If another send attempt is currently being processed this method will complete immediately and return false. This prevents multiple simultaneous send attempts from consuming resources.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also